bitkeeper revision 1.1389.5.9 (4278c4f0VAeQPVGBi1M71vwTpeJ-nQ)
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Wed, 4 May 2005 12:49:52 +0000 (12:49 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Wed, 4 May 2005 12:49:52 +0000 (12:49 +0000)
acpi_scan_rsdp's parameters are (start, len) and not (start, end).
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c

index 49b6f8865f56810505baa3ce594623e8eba26e1f..46e8585c40c5e88d943d0f53546860ddbb583dbf 100644 (file)
@@ -656,7 +656,7 @@ acpi_find_rsdp (void)
         */
        rsdp_phys = acpi_scan_rsdp (0, 0x400);
        if (!rsdp_phys)
-               rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF);
+               rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000);
 
         __set_fixmap_ma(FIX_ACPI_RSDP_PAGE, rsdp_phys, PAGE_KERNEL);